KVM: x86/vPMU: fix undefined shift in intel_pmu_refresh()
authorRadim Krčmář <rkrcmar@redhat.com>
Thu, 18 May 2017 17:37:31 +0000 (19:37 +0200)
committerRaspbian kernel package updater <root@raspbian.org>
Sun, 23 Jul 2017 03:07:25 +0000 (03:07 +0000)
commit38849ac2c983cba9a64c82906dd1bbbb163d046e
treee26580dff536c70cf217440e1ca5f01429108d4a
parentecd8001fe85b50b14e78a309186a4a639231a59e
KVM: x86/vPMU: fix undefined shift in intel_pmu_refresh()

commit 34b0dadbdf698f9b277a31b2747b625b9a75ea1f upstream.

Static analysis noticed that pmu->nr_arch_gp_counters can be 32
(INTEL_PMC_MAX_GENERIC) and therefore cannot be used to shift 'int'.

I didn't add BUILD_BUG_ON for it as we have a better checker.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Fixes: 25462f7f5295 ("KVM: x86/vPMU: Define kvm_pmu_ops to support vPMU function dispatch")
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/x86/kvm/pmu_intel.c